/* * Author: Chris Seguin * * This software has been developed under the copyleft * rules of the GNU General Public License. Please * consult the GNU General Public License for more * details about use and distribution of this software. */ package org.acm.seguin.ide.common.action; import javax.swing.AbstractAction; /** * Description of the Class * *@author Chris Seguin */ public abstract class GenericAction extends AbstractAction { /** * The accelerator key. In the future change this to ACCELERATOR_KEY */ public final static String ACCELERATOR = "ACCELERATOR"; }